home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809jp / BlastClient / BlastClient.dpr < prev    next >
Text File  |  1998-03-02  |  266b  |  16 lines

  1. program BlastClient;
  2.  
  3. uses
  4.   Forms,
  5.   main in 'main.pas' {frmMain},
  6.   ListenThrd in 'ListenThrd.pas',
  7.   About in 'About.pas' {frmAbout};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Initialize;
  13.   Application.CreateForm(TfrmMain, frmMain);
  14.   Application.Run;
  15. end.
  16.